home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000187_fdc@columbia.edu_Sun Jun 30 13:53:44 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  47 lines

  1. Article: 13493 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: REPEAT COUNTS
  6. Date: 30 Jun 2002 13:53:32 -0400
  7. Organization: Columbia University
  8. Lines: 30
  9. Message-ID: <afngis$84o$1@watsol.cc.columbia.edu>
  10. References: <3D1DCAEE.18B634CC@peoplepc.com> <afkrr0$alp$1@watsol.cc.columbia.edu> <3D1F3AFE.FC0D1092@peoplepc.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1025459613 22878 128.59.39.139 (30 Jun 2002 17:53:33 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 30 Jun 2002 17:53:33 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13493
  16.  
  17. In article <3D1F3AFE.FC0D1092@peoplepc.com>,
  18. Jack Patteeuw  <jjpatteeuw@peoplepc.com> wrote:
  19. : Frank da Cruz wrote:
  20. : > It's a byte-oriented variation of run-length encoding.  Simple but
  21. : > sometimes remarkably effective.  Like everything else in Kermit, the user
  22. : > can control it -- turn it on or off, choose the repeat-count prefix, etc,
  23. : > although there is rarely a need to bother.  It's on by default.
  24. : You guys keep making it easier and easier !!
  25. : Speaking of "High-Speed Kermit FIle Transfer", we have been doing some
  26. : benchmarks and the defaults for C-Kermit 7.x and K95 2.x seem to have all
  27. : of the "tricks" discussed in Chapter 12 turned on.  However, when
  28. : downloading out test case (lptest 127 8192) from a VAX/VMS V7.2, STA
  29. : /VERBOSE says it used 0 windows ?  Why ?  And is there anything we are
  30. : missing to get maximum performance ?
  31. When using modern Kermit versions (like the ones you have), the protocol
  32. automatically switches to streaming mode instead of sliding windows if
  33. either of the Kermit programs knows that it has a reliable connection:
  34.  
  35.   http://www.columbia.edu/kermit/ckermit70.html#x4.20
  36.  
  37. Even when sliding windows are used, the receiver is not conscious of them
  38. unless there have been transmission errors, and the sender uses only as
  39. many window slots as it actually needs.  The sender's window grows
  40. only when there is a long round-trip delay, or when there are
  41. transmission errors.
  42.  
  43. - Frank
  44.